All Questions
21 questions
2votes
1answer
973views
Animating GIF on hover in Javascript
I don't know JavaScript and it's safe to say this is my first code ever written in JS. I just needed to animate my GIFs when user hovers over them only. Googling separate concepts such as "string ...
3votes
2answers
97views
Limit second <select> options based on the first <select>
I want to see if there's a better way to write this code, solely in Javascript. There are two kinds of sets, the first set (C7, T7, C11, T11) have four options in the first select, and then up to two ...
2votes
1answer
143views
Toggling a class in JS
I'm toggling the class of an element with this code but I'm pretty sure it can be written more efficiently. ...
2votes
2answers
152views
Manipulating the browser history
I created a table with the ability to edit with popup. This part of the code, which includes: the ability to send URL to other users with the subsequent opening of the same state (the popup window is ...
2votes
1answer
8kviews
VueJS to do list - handling clear event on input
I made a basic to-do list in VueJS, but it feels really clunky and obtuse to me. One of the key things is that if the text input value is empty and the user clicks the button labeled submit then it ...
3votes
1answer
355views
Function to trigger animation with mouse wheel events
I am new in the JavaScript world and I just want to know if I can optimize my function by making it shorter. It already works but I plan to add five timelines to trigger with my slidenum variable. ...
2votes
0answers
51views
Event handler re-use in Javascript
I've been trying to deal with a lot of duplicate code in the first web pages I've been working on and have been playing around with the prototype model, which I think is the 'right' way to go about it....
7votes
2answers
130views
Controlling Finances with Web Development
Purpose First, let me explain the title: I previously had managed my finances like an old fashioned company might, and it worked wonders for making financial decisions (at least for me). I wanted my ...
1vote
2answers
456views
Updating the total when any of a set of spinners changes its value
I'm new person who working on jQuery and I need your help. ...
1vote
2answers
478views
delegate click event on document
I'm adding an onclick listener to the whole document then checking the source of the click. If the source of the click contains the attribute data-widget I want to ...
2votes
2answers
1kviews
Keyboard handler for selecting radio buttons
I have got my JavaScript working as seen here: https://jsfiddle.net/yLg1qs04/3/ But how do I condense/shorten it so that it's not repeating itself so often and taking up so many lines? ...
4votes
1answer
2kviews
Resize Images Dynamically
I set out to make a simple dynamic resize method for images. Obviously, it's better to serve images that are pre-sized to avoid unnecessary server loads. But it was fun to make for a novice/beginner ...
0votes
2answers
279views
Toggling class on mouse hover
I am using this code to add a class on mouse hover to a link button and remove it on mouse leave. ...
37votes
5answers
3kviews
When "How To Ask" is too subtle
This is the first JavaScript code I've ever written, alert("hello, world!"); aside. This site is closing quite a lot of questions because people won't read the ...
2votes
1answer
1kviews
Overriding scrolling behavior for navigation elements
I am new to JavaScript, and trying to ensure the i write the best possible code instead of "copy & paste". I hope i am asking correctly, want to know if my code I have written is done correctly ...